home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 44
/
Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso
/
-serious-
/
wb
/
merlin
/
rexx
/
miamioffline.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1999-07-12
|
233b
|
19 lines
/* Script to take miami offline and exit it */
options results
signal on break_c
/* disconnect from internet */
say "Closing Internet connection..."
address 'MIAMI.1'
offline
/* quit miami */
say GetOnLineTime
quit
exit